home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today - The Disc! 5 / CD-ROM Today - The Disc (Issue 5)(November 1994).ISO / mac / Mac shareware / Education / RLaB / examples / fac.r < prev    next >
Text File  |  1994-09-21  |  112b  |  14 lines

  1. //
  2. // Fac.r
  3. //
  4.  
  5. fac = function(a) 
  6. {
  7.   if(a <= 1) 
  8.   {
  9.       return 1;
  10.   else
  11.       return a*$self(a-1);
  12.   }
  13. };
  14.